home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / ARMLINUX / MAIL / 9708 / 000089_owner-linux-arm…r.rutgers.edu _Sat Aug 30 15:45:31 1997.msg < prev    next >
Internet Message Format  |  1997-11-30  |  2KB

  1. Return-Path: <owner-linux-arm-outgoing@vger.rutgers.edu>
  2. Received: from nic.funet.fi (nic.funet.fi [128.214.248.6])
  3.     by odie.barnet.ac.uk (8.8.6/8.8.6) with ESMTP id PAA00298
  4.     for <willy@odie.fluff.org>; Sat, 30 Aug 1997 15:45:29 +0100
  5. Received: from vger.rutgers.edu ([128.6.190.2] EHLO vger.rutgers.edu ident: root [port 8769]) by nic.funet.fi with ESMTP id <489-24488>; Sat, 30 Aug 1997 17:20:47 +0300
  6. Received: by vger.rutgers.edu id <972041-257>; Sat, 30 Aug 1997 10:19:25 -0400
  7. Received: from hermes.dur.ac.uk ([129.234.4.9] HELO hermes.dur.ac.uk ident: IDENT-NOT-QUERIED [port 42818]) by vger.rutgers.edu with SMTP id <971982-257>; Sat, 30 Aug 1997 10:19:10 -0400
  8. Received: from dust0 by hermes.dur.ac.uk id <PAA11660@hermes.dur.ac.uk>
  9.   (8.6.12/ for dur.ac.uk) with SMTP; Sat, 30 Aug 1997 15:19:58 +0100
  10. Date:     Sat, 30 Aug 1997 15:19:51 +0100 (BST)
  11. From: Ale Terlevich <A.I.Terlevich@durham.ac.uk>
  12. To: Ian Hinder <ian@advunit.demon.co.uk>
  13. cc: linux-arm@vger.rutgers.edu
  14. Subject: Re: Success!!!!!!!!!!!
  15. In-Reply-To: <66d77cc147%ian@advunit.demon.co.uk>
  16. Message-ID: <Pine.SOL.3.91-941213.970830151115.13053B-100000@dust0.dur.ac.uk>
  17. MIME-Version: 1.0
  18. Content-Type: TEXT/PLAIN; charset=US-ASCII
  19. X-Orcpt: rfc822;linux-arm@vger.rutgers.edu
  20. Sender: owner-linux-arm@vger.rutgers.edu
  21. Precedence: bulk
  22. Status: RO
  23.  
  24.  
  25.  
  26. > It then prompted me to either log in as root to correct the problem,
  27. > or ctrl-D to reboot Risc OS.  Being in an adventurous mood, I logged
  28. > in as root, but I couldn't do much because the hard disc seemed to
  29. > be in a permanently write-protected state.  I tried
  30.  
  31.   Oops!  Forgot about that when I described how I'd booten Linux for the 
  32. first time.  You need to run fsck to check the disks, but you can't 
  33. because you have no /etc/fstab file and you can't write it cos / has been 
  34. mounted read only.  The solution is to remount / as readwrite and to 
  35. write a fstab by hand, then you can run fsck....
  36.  
  37.  
  38. To remount / use
  39.  
  40. mount -n -o remount,rw /dev/hda3 /
  41.  
  42. then create /etc/fstab
  43.  
  44.  Here's mine...
  45.  
  46. /dev/hda4               swap                    swap    defaults        0 0
  47. /dev/hda3               /                       ext2    defaults        1 1
  48. none                    /proc                   proc    defaults        0 0
  49.  
  50.  Once you have created this, you can reboot the machine, and the rest 
  51. should happen on its own!
  52.  
  53.   Good luck!
  54.  
  55. Ale.